home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
Apps
/
ScreenSavers
/
BackSpaceViews
/
SpiralView.BackModule
/
Source
/
SpiralWraps.psw
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-01-31
|
245 b
|
12 lines
/* PostScript functions to draw spirals */
defineps PSLSetColor(float r,g,b)
r g b setrgbcolor
endps
/* draw and fill an arc between at degree angle */
defineps PSLDrawArc(float x,y, r, degree)
x y moveto
x y r degree degree arc fill
endps